In [1]:
# is used for heading
In [2]:
## size decrease
In [3]:
### heading 3
#### heading 4
##### heading 5
In [4]:
# shift + enter to run a code
In [5]:
# <b> = bold
# <b> This sentence is in bold
# <i> The sentence is in intalics </i>
# <u> This sentence is underlined
In [6]:
 # <b> this sentence is in bold </b>

Bullet Points¶

In [7]:
# <ol>   <li>first line in the list </li>   <li>second line in the list </li> </ol>

Highlighter¶

In [8]:
# <b> enclose the text that needs to be hightlighted in \'\' to be highlighted it </
` is called tilda

# A tilda is used for negation.
  Cell In[8], line 2
    ` is called tilda
    ^
SyntaxError: invalid syntax

Hiperlink¶

In [ ]:
# syntax of hyperlink:
# [Text to be used a click for the link no_space]

# [Text to be used a click for the link ] <no_space> (url)

click Here

BOLD ITALICS and UNDERLINING in html format in MARKDOWN¶

In [ ]:
# **bold and italic**_
# ___bold and italic___
# **<i>bold and italic</i>**
In [ ]:
# <u>underline text</u>

this sentence is in bold

this sentence is in italics

this sentence is underlined

My name is Alex

Highlighter¶

My name is Alexander ``

In [ ]:
# <b> enclose the text that needs to be highlighted in \`\` to highlight it. </
In [ ]:
# for html code always RUN in MARKDOWN
In [ ]:
### 

Keyboard Shortcuts¶

A to insert a new cell above the current cell, B to insert a new cell below.¶

M to change the current cell to Markdown, Y to change it back to code.¶

D + D (press the key twice) to delete the current cell.¶

Python Learning¶

In [ ]:
print("Hello World")

Loops in Python¶

In [ ]:
for i in range(10):
    print(i)
    print('outside for loop')

How to insert an image in jupyter notebook¶

In [ ]:
# !<no_space>[<title of your image>]<no_space>(image link)

4 ways to insert images in Jupyter Notebook¶

1. Drag and drop image to Markdown cell¶

The most user-friendly way to insert an image into Jupyter Notebook is to drag and drop the image into the notebook. It’s possible only to Markdown cells. The image is encoded with Base64, and its text representation is included in the ipynb file. The animation below shows how you can do it:¶

Insert image from URL¶

Inserting an image that is available via URL is very simple. It can be done in the Markdown cell:

In [ ]:
#![alternative text](URL-to-image)

convert notebook to web app

In [ ]:
 

3408.webp

download.jpg

_124800859_gettyimages-817514614.jpg

In [ ]:
# Link to see how to isert image in jupyter notebook
# https://mljar.com/blog/jupyter-notebook-insert-image/

You can also insert an image in the Python cell:¶

from IPython import display display.Image("URL-to-image")

)

In [ ]:
# : defines a start of a block

Introduction using Markdown¶

Hi my name is Alexander Aharon. I have worked in Sutherland Global Services in Manikonda as a Consultant for 3 years. I have cleared my PL-300 Power BI exam conducted by Microsoft in 2022. Apart from that I have done several projects related with Python, R and SQL. I have knowledge of Tableau also. I have attained a certification from Techcanvass. I have worked in Amazon also for 3 months before joining by MBA degree from NITHM.¶

How to insert audio file in jupyter notebook¶

In [24]:
from IPython.display import Audio, Image, YouTubeVideo
In [25]:
img_path='https://www.shutterstock.com/image-vector/hi-banner-speech-bubble-poster-260nw-1482836018.jpg'
Image(img_path,width=600,height=20)
Out[25]:
In [62]:
video_link="https://www.istockphoto.com/video/snow-melts-in-a-mountain-forest-gm1203835196-346152530?irgwc=1&cid=IS&utm_medium=affiliate&utm_source=Oxford%20Media%20Solutions&clickid=1YbXWlVU-xyNWfYX3fUjpSzjUkATwlWsZQ8fRk0&utm_term=&utm_campaign=cat_sponsored_all&utm_content=1020582&irpid=51471"
In [63]:
Video(data=video_link)
Out[63]:
Your browser does not support the video element.
In [50]:
audio_link="https://www2.cs.uic.edu/~i101/SoundFiles/gettysburg10.wav"
In [51]:
Audio(data=audio_link)
Out[51]:
Your browser does not support the audio element.
In [16]:
audio_link2="https://www2.cs.uic.edu/~i101/SoundFiles/PinkPanther60.wav"
In [17]:
Audio(data=audio_link2)
Out[17]:
Your browser does not support the audio element.
In [18]:
# Short video file link

# https://www.videvo.net/stock-video-footage/wav/
In [ ]: